home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 1.toast / Sample Code / Games / MoofWars / MoofEncoder / AppConditionals.h next >
Encoding:
C/C++ Source or Header  |  2000-09-28  |  1.4 KB  |  36 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        AppConditionals.h
  3.  
  4.     Contains:    Like MoofWars, we'll define a few conditional macros that assist in configuring 
  5.                 how the application actually works.  For the moment, we'll just have one, the
  6.                 debugging macro.
  7.  
  8.                 qDebugging  -- Whether or not additional debugging code should be inserted.
  9.                 With this turned on, most errors will DebugStr almost immediately and return
  10.                 errors as the error propagates up the calling chain.  This is slower, but if
  11.                 you've found a weird bug, this is the fastest way to replicate it.
  12.  
  13.     Written by: Timothy Carroll    
  14.  
  15.     Copyright:    Copyright © 1996-1999 by Apple Computer, Inc., All Rights Reserved.
  16.  
  17.                 You may incorporate this Apple sample source code into your program(s) without
  18.                 restriction. This Apple sample source code has been provided "AS IS" and the
  19.                 responsibility for its operation is yours. You are not permitted to redistribute
  20.                 this Apple sample source code as "Apple sample source code" after having made
  21.                 changes. If you're going to re-distribute the source, we require that you make
  22.                 it clear in the source that the code was descended from Apple sample source
  23.                 code, but that you've made changes.
  24.  
  25.     Change History (most recent first):
  26.                 7/1/1999    Karl Groethe         Updated for Metrowerks Codewarror Pro 2.1
  27.                 
  28.  
  29. */
  30.  
  31. #ifndef __APPCONDITIONALS__
  32. #define __APPCONDITIONALS__
  33.  
  34. #define qDebugging 1
  35.  
  36. #endif // __APPCONDITIONALS__